/* Remove margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
    position: relative ;
    box-sizing: border-box !important; /* Ensure consistent box sizing */
  }
  
  
  
  
  
  body {
    margin: 0;
    background-color: #FAF9F6;
    padding: 0;
  }
  
  /* Basic CSS Reset */
  p {
    margin: 0 !important;
  }
  
  
  


/* Navbar styling */



.navbar {
    position: fixed !important;
    width: 100vw;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgba(245, 245, 231, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 8px 0;
}

/* Navbar on Scroll - Enhanced Shadow */
.navbar.scrolled {
    background-color: rgba(245, 245, 231, 0.95);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.12);
}

/* Logo Styling */
.navbar-brand img {
    width: auto;
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Navigation Links */
.navbar-nav {
    align-items: center;
}

.nav-item {
    margin-left: 18px;
}

.nav-link {
    font-size: 16px;
    /* font-weight: 500; */
    color: #1a1a1a !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effect - Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #964B00;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: #964B00 !important;
    background-color: rgba(150, 75, 0, 0.08);
}

/* Active Link State */
.nav-link.active {
    color: #964B00 !important;
    font-weight: 600;
}

/* Contact Button Special Styling */
.contact-btn {
    background: linear-gradient(135deg, #964B00 0%, #7a3d00 100%) !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 25px;
    font-weight: 600;
    margin-left: 10px !important;
    /* box-shadow: 0 4px 12px rgba(150, 75, 0, 0.3); */
    transition: all 0.3s ease;
}

.contact-btn::after {
    display: none;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #7a3d00 0%, #964B00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(150, 75, 0, 0.4);
    color: white !important;
}

/* ========================================
   MOBILE TOGGLE BUTTON - FIXED
   ======================================== */

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.navbar-toggle .bar {
    background-color: #1a1a1a;
    height: 3px;
    width: 100%;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Toggle Animation */
.navbar-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
   RESPONSIVE DESIGN - FIXED
   ======================================== */

/* Show toggle button at 1024px and below */
@media screen and (max-width: 1024px) {
    .navbar-toggle {
        display: flex !important;
    }

    /* Hide the navbar collapse by default */
    .navbar-collapse {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(245, 245, 231, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: left 0.4s ease;
        overflow-y: auto;
        padding: 30px 0;
        display: block !important; /* Force display */
    }

    /* Show menu when active */
    .navbar-collapse.show {
        left: 0 !important;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
        display: flex !important; /* Force display */
    }

    .nav-item {
        width: 100%;
        margin-left: 0 !important;
        margin-bottom: 10px;
        display: block !important; /* Force display */
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: 14px 20px !important;
        font-size: 18px;
        border-radius: 12px;
        display: block !important; /* Force display */
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background-color: rgba(150, 75, 0, 0.15);
    }

    .contact-btn {
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}

/* Desktop - Show navbar normally */
@media screen and (min-width: 1025px) {
    .navbar-toggle {
        display: none !important;
    }

    .navbar-collapse {
        display: flex !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: none !important;
        padding: 0 !important;
    }

    .navbar-nav {
        flex-direction: row !important;
        display: flex !important;
    }

    .nav-item {
        display: inline-block !important;
    }
}

@media screen and (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }

    .navbar {
        padding: 6px 0;
    }

    .navbar-collapse {
        top: 60px;
        height: calc(100vh - 60px);
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-collapse.show .nav-item {
    animation: fadeInDown 0.4s ease forwards;
    opacity: 0;
}

.navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.15s; }
.navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.2s; }
.navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.25s; }
.navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.3s; }





















    
  
 
  
.header-title {
    font-family: 'Times New Roman', Times, serif;
    color: #964B00;
    font-weight: 600;
}



.content1 a{
    color: white;
    text-decoration: none;
    border-radius: 32px;
    margin: 0% !important;
}

.Connect svg {
    color: #FAF9F6;
    margin-bottom: 2px;
}

.Connect   {
    margin-top: 20px;
    background-color: #964B00;
    width: 200px;
    padding: 10px 40px;
    border-radius: 32px;
    gap: 10px;
}

.AboutUs {
    flex-wrap: wrap;
    display: flex;
    width: 100%;
}



.content1 {
    height: 450px !important;
    display: flex;
    margin-top: 200px;
    width: 50%;
}

.content2 {
    width: 50%;
    width: 324px;
    margin-top: 150px;
    height: 386px;
    background: url(../Assets/AboutUS.png);
    background-size: cover;
    background-position: center;
    height: 80vh;

}

/* Responsive styles */
@media (max-width: 768px) {
    .content1, .content2 {
        width: 100%; /* Make both sections take full width on smaller screens */
        margin-top: 50px; /* Adjust the top margin for smaller screens */
    }

    .content1 {
        height: auto; /* Allow the height to adjust based on content */
    }

    .content2 {
        height: 300px; /* Adjust the height for smaller screens */
    }
}

@media (max-width: 480px) {
    .content1 {
        margin-top: 30px; /* Further adjust the top margin for very small screens */
    }

    .content2 {
        height: 200px; /* Further adjust the height for very small screens */
    }
}.AboutUs {
    flex-wrap: wrap;
    display: flex;
    width: 100%;
}

.content1 {
    height: 450px !important;
    display: flex;
    margin-top: 200px;
    width: 50%;
}

.content2 {
    width: 50%;
    width: 324px;
    margin-top: 150px;
    height: 386px;
    background: url(../Assets/AboutUS.png);
    background-size: cover;
    background-position: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .content1, .content2 {
        width: 100%; /* Make both sections take full width on smaller screens */
    }

.AboutUs{
    flex-direction: column-reverse;
}

    .content1 {
        margin-top: 20px;
        height: auto; /* Allow the height to adjust based on content */
    }

    .content2 {
        margin-top: 100px;
        height: 320px;
        width: 300px; /* Adjust the height for smaller screens */
    }


}

@media (max-width: 480px) {
    .content1 {
        margin-top: 5px; /* Further adjust the top margin for very small screens */
    }

    .AboutUs{
        flex-direction: column-reverse;
    }

    .content2 {
        margin-top: 80px;
        height: 260px;
        width: 230px; /* Further adjust the height for very small screens */
    }

    .Connect{
        margin-top: 8px;
    }
}


.founder {
    display: flex;
    justify-content: center;
    gap: 200px;
}





.FounderContent{

    
    position: relative;
    width: 300px;
    height: 350px;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.FounderContent img{

    
    position: relative;
    width: 300px;
    height: 350px ;
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    flex-direction: column;
    justify-content: space-between;
}





.FounderContent1 {
    position: relative;
    width: 300px;
    height: 350px;
    background-image: url("../Assets/Advisory.png"); /* Set the image as background */
    background-position: center;
    background-size: cover;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-overlay {
    position: absolute;
    top: 68px; /* Adjust as needed */
    left: -10  !important;
    right: 15px;
    font-size: 12px;
    color: #5a422a; /* Adjust to match the image */
    font-weight: 500;
    text-align: left;
    line-height: 1.7;
}

.text-overlay li {
    list-style-type: disc;
    margin-left: 10px;
}

/* Style for "Advisory Of Lexcelence" */
.header-overlay {
    position: absolute;
    top: 20px;
    left: 15px;
    font-size: 14px;
    font-weight: bold;
    color: #4c331c;
}

/* Style for the Name at the Bottom */
.footer-overlay {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    font-weight: bold;
    color: #8a5a3a;
    background-color: rgba(0, 0, 0, 0.12)  ;
    width: 300px;
    text-align: center;
    padding: 10px;
    border-radius: 0px 0px 15px 30px;
}
/* Style for the Name at the Bottom */
.footer-overlay2 {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-46%);
    font-size: 14px;
    font-weight: bold;
    color: #552a0d;
    background-color: rgba(0, 0, 0, 0.12)  ;
    width: 300px;
    text-align: center;
    padding: 10px;
    border-radius: 0px 0px 14px 36px;
}


.MissionContent1  {

    background-color: #FFFDE5;
    padding: 15px;
    border-radius: 12x;
}
.MissionContent2  {
    margin-top: 10px;
    background-color: #FFFDE5;
    padding: 15px;
    margin-top: 20px;
    border-radius: 12x;
}


.missioncontainer{
    display: block;
    align-items: center !important;
}

.OurMission{
    display: flex;
    justify-content: center;
    gap: 60px;
}



.MissionContent3  img{
    width: 320px ;
    border-radius: 12px;
    height: 404px;
    padding: 0% !important;
}

.MissionContent3 {
    width: 330px;
display: flex;
border-radius: 12px;
align-items: center !important;
    padding: 0% !important;
    height: 444px;
    background-position: center !important;
    background-size: cover !important;
    background: url(../Assets/ShapingtheFuture.png);
    position: relative; /* Ensures the text overlay stays in place */
}

.MissionOverlay {
    position: relative;
}


.OverLayText3{
    position: absolute;
    top: 190px !important;
    left:130%;
    transform: translate(-50%, -50%);
    text-align: right;
    color: white;
    font-size: 14px;
    border-radius: 12px;
}


.Connect1 svg {
    color: #FAF9F6;
    margin-bottom: 2px;
}

.Connect1   {
    margin-top: 20px;
    background-color: #964B00;
    width: 169px;
    padding: 10px 40px;
    border-radius: 32px;
    gap: 10px;
}
.Connect1 svg {
    color: #FAF9F6;
    margin-bottom: 2px;
}


.Connect1  a {
text-decoration: none;
color: white;
}



.img1 img{
    width: 950px;
    height: 200px;
    
}

.img1 {
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}


@media screen and (max-width: 1024px) {
    
   
    .img1 img{
        width: 700px;
        height: auto;
        
    }




    @media screen and (max-width: 426px) {
       
       
        .img1 img{
            width: 300px;
            height: auto;
            
        }

        .founder{
            gap: 24px !important; 
        }
        
        .Flexible{
            rotate: 0deg !important;
        }
        .Comprehensive{
            rotate: 0deg !important;
        }
        .Expert{
            rotate: 0deg !important;
        }
    }




    
}










.ChooseContent{
    display: block  !important;
    align-items: center !important;
}


.content5 {
    display: flex;
    
}
.content6{
    display: flex;
}
.content7{
    display: flex;
    justify-content: end;
}












/* Default Positions with Smooth Animation */
.Expert, .Comprehensive, .Flexible, .Practical, .career {
    position: relative;
    transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), 
                top 1s cubic-bezier(0.25, 1, 0.5, 1), 
                left 1s cubic-bezier(0.25, 1, 0.5, 1), 
                rotate 1s ease-in-out;
}

/* Default Positions */
.Expert {
    background-color: #FFFDBC;
    padding: 20px;
    border-radius: 12px;
    top: 160px;
    left: 180px;
}

.Comprehensive {
    background-color: #EBB395;
    padding: 20px;
    border-radius: 12px;
    top: 10px;
    left: 180px;
}

.Flexible {
    background-color: #FFFDE5;
    padding: 20px;
    border-radius: 12px;
    top: 10px;
    left: -120px;
}

.Practical {
    background-color: #FDC0A3;
    padding: 20px;
    border-radius: 12px;
    top: 190px;
    left: -120px;
}

.career {
    width: 300px;
    background-color: #D1D1D1;
    padding: 20px;
    border-radius: 20px;
    top: -160px;
    left: -120px;
}

/* 🚀 Smoother Animation Effect when Active */
.WhyChoose.active .Practical,
.WhyChoose.active .career {
    top: 0;
    left: 0;
    transform: translate(0, 0) rotate(0deg);
}

.WhyChoose.active .Expert{
    top: 0;
    left: 0;
    rotate: -10deg;

}
.WhyChoose.active .Comprehensive{
    top: 0;
    left: 0;
    rotate: -10deg;
}

.WhyChoose.active .Flexible{
    top: 0;
    left: 0;
    rotate: 6deg;
}








/* .Expert{
    background-color: #FFFDBC;
    padding: 20px;
    border-radius: 12px;
    rotate: -10deg;
}

.Comprehensive{
    background-color: #EBB395;
    padding: 20px;
    border-radius: 12px;
    rotate: -10deg;
}

.Flexible{
    background-color: #FFFDE5;
    padding: 20px;
    border-radius: 12px;
    rotate: 6deg;

}
.Practical{
    background-color: #FDC0A3;
    padding: 20px;
    border-radius: 12px;

}
.career{
    width: 300px;
    background-color: #D1D1D1;
    padding: 20px;
    border-radius: 20px;
    
} */










.map-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically if the div has a height */
    width: 100%; /* Ensures it takes full width */
    padding: 20px; /* Optional padding */
}









































/* Ensure image scales properly */
.SubscribeContent1 .image img {
    width: 100%; /* Full width on smaller screens */
    height: auto; /* Maintain aspect ratio */
    max-width: 540px; /* Limit max size on larger screens */
    display: block;
    margin: 0 auto; /* Center align on small screens */
  }
  
  /* Layout adjustments */
  .SubscribeContent1 {
    padding: 20px;
  }
  
  
  /* Subscribe input & button */
  .subscribe-container {
    display: flex;
    flex-wrap: wrap; /* Stack input & button on smaller screens */
    gap: 10px;
    justify-content: center;
  }
  
  .subscribe-input {
    width: 70%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .subscribe-button {
    padding: 10px 15px;
    border: none;
    background-color: #964B00;
    color: white;
    border-radius: 5px;
    cursor: pointer;
  }
  
  @media screen and (max-width: 768px) {
   
    .SubscribeContent2{
      display: block;
    }
    
  
  }
  
  
  
  .SubscribeContent2{
    display: block;
    justify-content: start;
  }
  
  
  
  
  
  
  .subscribe-container {
    margin-top: 20px;
              display: flex;
              align-items: center;
              width: fit-content;
              background-color: #faf7dc; /* Light yellow background */
              padding: 5px;
              border-radius: 25px;
          }
  
          .subscribe-input {
              border: none;
              outline: none;
              background: transparent;
              padding: 10px;
              width: 280px;
              font-size: 16px;
              border-radius: 25px;
          }
  
          .subscribe-button {
              background-color: #8b4f13; /* Brown color */
              color: white;
              border: none;
              padding: 10px 20px;
              border-radius: 25px;
              cursor: pointer;
              font-size: 16px;
          }
  
          .subscribe-button:hover {
              background-color: #6d3e0e;
          }
  
  .subscribe{
    display: flex !important;
    justify-content: center;
    background-color: #F6F6F6;
  }
  
  
  


/* ================= FOOTER ================= */

.Footer {
  background-color: #352513;   /* darker elegant brown */
  color: #ffffff;
  padding: 4rem 2rem;
}

/* Heading Section */
.Footer h2 {
  font-weight: 600;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 20px;
  margin-bottom: 40px;
}

/* Column Headings */
.Footer h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}

/* Paragraph Text */
.Footer p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
}

/* Links */
.Footer a {
  color: #d8d8d8;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.Footer a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* Icon Alignment */
.Footer svg {
  margin-right: 8px;
  vertical-align: middle;
}

.Phone,
.Gmail,
.Location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

/* Bottom Section */
.FooterBottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #bfbfbf;
}

/* Responsive */
@media (max-width: 768px) {
  .Footer {
    padding: 2.5rem 1.5rem;
    text-align: left;
  }

  .Footer h2 {
    font-size: 22px;
  }
}



